home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjtexta11.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-04  |  736 b   |  28 lines

  1. // Design Time Java Text Field implementation. (HPP)
  2.  
  3. #ifndef _DTJTEXTA11_HPP
  4. #define _DTJTEXTA11_HPP
  5.  
  6. #include "dtjcomp11.hpp"
  7. #include "dtjtext11.hpp"
  8.                       
  9. class METAEXPORTCLASSDEF DTJTextArea11 : public DTJTextComponent11
  10. {
  11.     public:
  12.         DTJTextArea11( const MetaObject * pMetaObj );
  13.         virtual ~DTJTextArea11();
  14.  
  15.     virtual WBool        SetStyle( WStyle stl, WBool clone=FALSE );
  16.  
  17.     virtual void GenClassName( WString & className ) const;
  18.  
  19.     protected:
  20.         virtual WStyle CheckExtraStyles(WStyle style);
  21. };
  22.  
  23. // needed for mdreader
  24. typedef DTJTextArea11 DTjava__dot__awt__dot__TextArea__dot__11;
  25. typedef WTextBox java__dot__awt__dot__TextArea__dot__11;
  26.  
  27. #endif // _DTJTEXTA11_HPP
  28.